/* Imagini eveniment */
.eveniment-poze {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 0 auto;
    max-width: 1000px;
}

.eveniment-poze img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.eveniment-poze img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Spațiu între secțiuni */
.eveniment-container > div {
    margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .eveniment-titlu h3 {
        font-size: 22px;
    }

    .eveniment-text p {
        font-size: 14px;
    }

    .eveniment-poze img {
        height: 120px;
    }
}

/*light box section */
/* Lightbox */
.lightbox {
    display: none; /* Ascuns implicit */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Fundal semi-transparent */
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Deasupra altor elemente */
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.lightbox img:hover {
    transform: scale(1.05); /* Efect de mărire la hover */
}

/* Închide lightbox-ul când faci click pe fundal */
.lightbox:target {
    display: flex;
}

